home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
398
/
398.xpi
/
chrome
/
forecastfox.jar
/
content
/
parser
/
resolver-item.js
< prev
Wrap
Text File
|
2010-02-04
|
724b
|
21 lines
/*------------------------------------------------------------------------------
Copyright (c) 2008 Ensolis, LLC. All Rights Reserved.
----------------------------------------------------------------------------*/
/******************************************************************************
* ResolverItem Component
******************************************************************************/
function ResolverItem()
{
this._properties = {};
}
ResolverItem.prototype = {
__proto__: new ItemBase("ResolverItem"),
////////////////////////////////
// nsIDOMXPathNSResolver
lookupNamespaceURI: function ResolverItem_lookupNamespaceURI(aPrefix)
{
return this._properties[aPrefix] || null;
}
};